home *** CD-ROM | disk | FTP | other *** search
/ Tech Arsenal 1 / Tech Arsenal (Arsenal Computer).ISO / tek-01 / winlib3.zip / WALLOC.H < prev    next >
Text File  |  1991-01-14  |  336b  |  25 lines

  1. #ifndef _WALLOC_DEF
  2. #define _WALLOC_DEF
  3.  
  4. #if defined (__TURBOC__)
  5.   #include <alloc.h>
  6. #endif
  7.  
  8. #if defined (LATTICE)
  9.   #include <stdlib.h>
  10. #endif
  11.  
  12. #if defined (MSC) || (POWERC)
  13. # include <malloc.h>
  14. #ifndef NULL
  15. # define NULL ((char *)0)
  16. #endif
  17. #endif
  18.  
  19. #if defined (__ZTC__)
  20. # include <stdlib.h>
  21. #endif
  22.  
  23.  
  24. #endif
  25.